@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --swiper-theme-color: #000 !important;
    --primary-color: #035B7A;
    --primary-color-light: #2e5a7f;
    --secondary-color: white;
    --secondary-color-light: #eceae2;
    --text-color: #414243;
    --color-black: black;
    --color-lightgrey: #e2dfdf;
    --swiper-pagination-bottom: 30px;
    --swiper-navigation-size: 30px !important;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

.desktop-hide {
    display: none;
}

.mobile-hide {
    display: block;
}

.to-top {
    background-color: var(--primary-color);
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

/* HEADER STYLE */
.headerContainer {
    position: absolute;
    z-index: 100;
    width: 100%;
    background-color: white;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.headerContainer.sticky {
    position: fixed;
    top: 0;
    background-color: white;
    transition: all 0.2s ease-in-out;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.topLogo {
    background-color: var(--primary-color);
    height: 50px;
    /* z-index: 1000; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.topLogo .topInnerLogo .innerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topLogo .topInnerLogo .innerLogo a img {
    width: 100px;
    height: auto;
}

.belowLogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    height: 40px;
}

.belowLogo .menuArea ul {
    display: flex;
}

.belowLogo .menuArea ul li {
    margin-right: 25px;
}

.belowLogo .menuArea ul li a {
    color: #797575;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.belowLogo .menuArea ul li:hover a {
    font-weight: 500;
}

.belowLogo .afterMenu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.belowLogo .afterMenu .language {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.belowLogo .afterMenu .language .icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belowLogo .afterMenu .language .icon svg {
    width: 18px;
    aspect-ratio: 1;
    fill: #897979;
}

.belowLogo .afterMenu .language .languagePopupContainer {
    position: absolute;
    top: 130%;
    left: 0;
    background-color: white;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.belowLogo .afterMenu .language .languagePopupContainer a .languageItem {
    display: flex;
    gap: 10px;
    align-items: center;
}

.belowLogo .afterMenu .language .languagePopupContainer a .languageItem .flag svg {
    height: 17px;
    width: 17px;
}

.belowLogo .afterMenu .language .languagePopupContainer a .languageItem span {
    font-size: 0.9rem;
}

.belowLogo .afterMenu .language .languagePopupContainer.active {
    opacity: 1;
    visibility: visible;
}

.belowLogo .afterMenu .serviceBtn {
    background-color: var(--primary-color);
    padding: 5px 25px;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--primary-color);
}

.belowLogo .afterMenu .serviceBtn a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.belowLogo .afterMenu .serviceBtn a .services {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.belowLogo .afterMenu .serviceBtn a .phone {
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
}

.belowLogo .afterMenu .serviceBtn:hover {
    background-color: var(--secondary-color);
}

.belowLogo .afterMenu .serviceBtn:hover a .services {
    color: var(--primary-color);
}

.belowLogo .afterMenu .serviceBtn:hover a .phone {
    color: var(--primary-color);
}

.mobileMenu {
    display: none;
    transform: scale(0.8);
    z-index: 1000;
}

.mobileMenu label {
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 30px;
    cursor: pointer;
}

.mobileMenu label span {
    background: #fff;
    border-radius: 0;
    height: 2px;
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobileMenu span:nth-of-type(1) {
    width: 50%;
}

.mobileMenu span:nth-of-type(2) {
    width: 100%;
}

.mobileMenu span:nth-of-type(3) {
    width: 100%;
}

.mobileMenu input[type="checkbox"] {
    display: none;
}

.mobileMenu input[type="checkbox"]:checked~span:nth-of-type(1) {
    background: var(--primary-color);
    transform-origin: bottom;
    transform: rotatez(45deg) translate(8px, 10px);
}

.mobileMenu input[type="checkbox"]:checked~span:nth-of-type(2) {
    background: var(--primary-color);
    transform-origin: top;
    transform: rotatez(-45deg);
}

.mobileMenu input[type="checkbox"]:checked~span:nth-of-type(3) {
    background: var(--color-black);
    transform-origin: bottom;
    width: 50%;
    transform: translate(-12px, -14px) rotatez(45deg);
}

.aside {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    height: 100vh;
    transform: translateY(-100%);
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.32, 0.49, 0.65, 0.78);
}

.aside .topContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    margin-right: 10%;
}

.aside .topContainer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside .topContainer .logo img {
    width: 100px;
    height: auto;
}

.aside .topContainer .afterLogo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.aside .topContainer .afterLogo .searchIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.aside .topContainer .afterLogo .searchIcon svg {
    width: 25px;
    aspect-ratio: 1;
    fill: var(--primary-color);
}

.aside .topContainer .afterLogo .languageSwitch {
    position: relative;
}

.aside .topContainer .afterLogo .languageSwitch .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside .topContainer .afterLogo .languageSwitch .icon svg {
    width: 25px;
    aspect-ratio: 1;
    fill: var(--primary-color);
}

.aside .topContainer .afterLogo .languageSwitch .languagePopupContainer {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aside .topContainer .afterLogo .languageSwitch .languagePopupContainer .languageItem {
    display: flex;
    gap: 10px;
    align-items: center;
}

.aside .topContainer .afterLogo .languageSwitch .languagePopupContainer.active {
    visibility: visible;
    opacity: 1;
}

.aside .menuArea {
    margin-top: 50px;
    margin-bottom: 50px;
}

.aside .menuArea ul li {
    margin-top: 15px;
}

.aside .menuArea ul li a {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 300;
}

.aside .serviceButton {
    background-color: var(--primary-color);
    padding: 5px 25px;
    transition: all 0.3s ease-in-out;
    width: 60%;
    border-radius: 3px;
}

.aside .serviceButton a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.aside .serviceButton a .services {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.aside .serviceButton a .phone {
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
}

.aside .serviceBtn:hover {
    background-color: var(--secondary-color);
    /* a {
   display: flex;
   gap: 15px;
   align-items: center;
   .services {
   color: white;
   font-size: 0.75rem;
   font-weight: 600;
   text-transform: uppercase;
   }
   .phone {
   color: white;
   font-size: 0.75rem;
   font-weight: 400;
   text-transform: uppercase;
   }
   } */
}

.aside.active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .belowLogo {
        display: none;
    }

    .mobileMenu {
        display: block;
    }

    .aside {
        display: block;
    }
}

.footerArea {
    background-color: var(--primary-color);
}

.footerArea .topFooter {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footerArea .topFooter .logo {
    display: flex;
    align-items: start;
}

.footerArea .topFooter .aferLogo {
    display: flex;
    gap: 20px;
}

.footerArea .topFooter .aferLogo .item {
    width: 160px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footerArea .topFooter .aferLogo .item .title {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.footerArea .topFooter .aferLogo .item ul li {
    margin-top: 5px;
}

.footerArea .topFooter .aferLogo .item ul li a {
    color: #dedede;
    font-size: 0.8rem;
    font-weight: 400;
}

.footerArea .topFooter .aferLogo .item ul.socialIcon {
    display: flex;
    gap: 10px;
}

.footerArea .topFooter .aferLogo .item ul.socialIcon li a svg {
    width: 13px;
    aspect-ratio: 1;
    fill: lightgray;
}

.footerArea .copyRight {
    padding-top: 30px;
}

.footerArea .copyRight span {
    color: lightgray;
    font-size: 0.7rem;
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 576px) {
    .footerArea .topFooter {
        flex-direction: column;
        gap: 70px;
    }

    .footerArea .topFooter .aferLogo .item {
        gap: 7px;
    }

    .footerArea .topFooter .aferLogo {
        flex-direction: column;
        gap: 40px;
    }
}

/* HOMEPAGE */
.homepageSlideItem {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    /* background-color: blue; */
}

.homepageSlideItem .content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 1;
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}

.homepageSlideItem .content h2 {
    color: white;
    /* text-align: center; */
    font-size: 2.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    line-height: 1.5;
    /* animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.homepageSlideItem .content h3 {
    color: white;
    /* text-align: center; */
    font-size: 1.3rem;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 1.5;
}

.homepageSlideItem .content .button {
    padding-bottom: 30px;
    padding-top: 20px;
}

.homepageSlideItem .content .button a {
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 10px 35px;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    cursor: pointer;
}

.homepageSlideItem .content .button a:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.homepageSlideItem .background {
    /* background-color: orange; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.homepageSlideItem .background .item {
    /* background-color: green; */
    width: 100%;
    height: 100%;
}

.homepageSlideItem .background .item video,
.homepageSlideItem .background .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.homepageTopSection {
    background-color: transparent;
    height: 90vh;
}

.homepageTopSection .swiper {
    width: 100%;
    height: 100%;
}

.homepageTopSection .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}



.homepageTopSection .swiper-slide .homepageSlideItem .content h2 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s ease;
    transition-delay: 0.7s;
}

.homepageTopSection .swiper-slide .homepageSlideItem .content h3 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s ease;
    transition-delay: 0.8s;
}

.homepageTopSection .swiper-slide .homepageSlideItem .content .button {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s ease;
    transition-delay: 0.9s;
}

.homepageTopSection .swiper-slide-active {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    /* background-color: orange; */
}


.homepageTopSection .swiper-slide-active .homepageSlideItem .content h2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.homepageTopSection .swiper-slide-active .homepageSlideItem .content h3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.homepageTopSection .swiper-slide-active .homepageSlideItem .content .button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    width: 50px;
    height: 3px;
    border-radius: 0px;
    position: relative;
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 0px;
    /* box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08); */
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet .progress-bar {
    height: 100%;
    background-color: transparent;
    border-radius: 0px;
    transition: 5s linear;
    transition-property: width, background-color;
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet .progress-striped .progress-bar {
    background-color: #ffffff;
    width: 100%;
    /* animation: progressAnimationStrike 5s; */
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet-active {
    background-color: transparent;
    width: 50px;
    height: 3px;
    border-radius: 0px;
    position: relative;
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet-active span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(185, 185, 185); */
}

.homepageTopSection .swiper-pagination .swiper-pagination-bullet-active .progress-striped .progress-bar {
    animation: progressAnimationStrike 5s;
    /* .swiper-pagination-bullet-active .path {
   display: inline-block !important;
   stroke-dasharray: 1000;
   stroke-dashoffset: 0;
   animation: dash linear 120s;
   animation-iteration-count: unset;
   } */
    /* .path {
   display: none;
   }
   @keyframes dash {
   from {
   stroke-dashoffset: 1000;
   }
   to {
   stroke-dashoffset: 0;
   }
   } */
    /* .swiper-pagination-bullet::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 0%;
   height: 100%;
   background-color: transparent;
   transition: all 5s ease-in-out;
   }
   .swiper-pagination-bullet-active::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: blue;
   } */
}

/* .progress {
 background: lightgray;
 border-radius: 0px;
 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
 }
 .progress-bar {
 height: 18px;
 background-color: white;
 border-radius: 0px;
 transition: 5s linear;
 transition-property: width, background-color;
 }
 .progress-striped .progress-bar {
 background-color: #FCBC51;
 width: 100%;
 animation: progressAnimationStrike 5s;
 } */
@keyframes progressAnimationStrike {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* 
 @keyframes progressAnimation {
 0% {
 width: 5%;
 background-color: #F9BCCA;
 }
 100% {
 width: 85%;
 background-color: #EF476F;
 }
 }
 /* $green: #4cd964;
 $turquoise: #5ac8fa;
 $blue: #007aff;
 $light-blue: #7DC8E8;
 $purple: #5856d6;
 $red: #ff2d55; */
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.homepageTitle {
    padding-top: 30px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
}

.homepageModelItem {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.homepageModelItem .image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepageModelItem .image a {
    width: 100%;
    height: auto;
}

.homepageModelItem .image a img {
    width: 100%;
    height: auto;
}

.homepageModelItem h3.title {
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.homepageModelItem .button {
    padding-top: 30px;
}

.homepageModelItem .button a {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 35px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.homepageModelItem .button:hover a {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.exploreModelHomepageSlider .swiper {
    width: 100%;
    height: 100%;
}

.exploreModelHomepageSlider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exploreModelHomepageSlider .swiper-slide .homepageModelItem h3.title {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.2s ease;
    transition-delay: 1s;
}

.exploreModelHomepageSlider .swiper-slide .homepageModelItem .button {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.2s ease;
    transition-delay: 1.1s;
}

.exploreModelHomepageSlider .swiper-slide-active .homepageModelItem h3.title {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.exploreModelHomepageSlider .swiper-slide-active .homepageModelItem .button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.keyFeatureItem {
    position: relative;
    width: 100%;
    aspect-ratio: 2;
    overflow: hidden;
    border-radius: 20px;
}

.keyFeatureItem .content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    padding: 0px 50px;
    z-index: 100;
}

.keyFeatureItem .content h4.title {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding-bottom: 20px;
}

.keyFeatureItem .content p.miniTitle {
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
}

.keyFeatureItem .image {
    position: relative;
    width: 100%;
    height: 100%;
}

.keyFeatureItem .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.keyFeatureItem .image::before {
    content: '';
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.19) 23%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
}

.keyFeatureSlider .swiper {
    width: 100%;
    height: 100%;
}

.keyFeatureSlider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.keyFeatureSlider .key-feature-swiper-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    z-index: 1;
    padding: 25px 50px;
}

.keyFeatureSlider .key-feature-swiper-pagination .swiper-pagination-bullet {
    background-color: white;
    width: 50px;
    height: 5px;
    border-radius: 0;
}

.newsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.newsItem {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsItem .image {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.newsItem .image img {
    width: 100%;
    aspect-ratio: 1.6666666667;
    object-fit: cover;
    object-position: center;
}

.newsItem .date {
    font-size: 0.75rem;
    color: grey;
}

.newsItem .title {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.5;
}

.newsItem:hover .image {
    opacity: 0.5;
}

.moreButton {
    padding-bottom: 10px;
}

.moreButton a {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 35px;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--primary-color);
}

.moreButton a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.serviceItem {
    position: relative;
}

.serviceItem .content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: left;
    padding: 30px;
    z-index: 1;
}

.serviceItem .content h5.title {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.serviceItem .content p {
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
}

.serviceItem .image {
    display: flex;
    width: 100%;
    aspect-ratio: 1.5;
    align-items: center;
    justify-content: center;
    position: relative;
}

.serviceItem .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.serviceItem .image::before {
    content: '';
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.19) 23%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
}

.serviceSlider .swiper {
    width: 100%;
    height: 100%;
}

.serviceSlider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background-color: lightslategray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serviceSlider .service-swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.serviceSlider .service-swiper-pagination .swiper-pagination-bullet {
    background-color: var(--primary-color);
    width: 50px;
    height: 5px;
    border-radius: 0;
}

.testDriveSection {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.testDriveSection .content {
    position: absolute;
    width: 100%;
    bottom: 15%;
    left: 0;
    z-index: 1;
    padding: 10px;
    text-align: center;
}

.testDriveSection .content h3 {
    text-transform: uppercase;
    font-size: 1.4rem;
    color: white;
}

.testDriveSection .content .button {
    padding-top: 30px;
}

.testDriveSection .content .button a {
    color: var(--primary-color);
    background-color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: 2px solid white;
}

.testDriveSection .content .button a:hover {
    color: white;
    background-color: var(--primary-color);
}

.testDriveSection .background {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.testDriveSection .background img {
    width: 100%;
    aspect-ratio: 2;
    object-fit: cover;
}

.testDriveSection .background::before {
    content: '';
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.19) 23%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
}

/* SINGLE MODEL STYLE */
.topCover {
    position: relative;
}

.topCover .content {
    position: absolute;
    width: 100%;
    bottom: 10%;
    left: 0;
    z-index: 2;
}

.topCover .content h1.title {
    color: white;
    font-size: 3rem;
    padding-bottom: 20px;
}

.topCover .content span.subTitle {
    color: white;
    font-size: 2.5rem;
    font-weight: 100;
}

.topCover .backgroundImage {
    width: 100%;
    height: 100%;
    position: relative;
}

.topCover .backgroundImage img {
    width: 100%;
    aspect-ratio: 3;
    object-fit: cover;
    object-position: center;
    position: relative;
}

.topCover .backgroundImage::before {
    content: '';
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.19) 23%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 1;
}

.navigationSection {
    position: sticky;
    top: 90px;
    z-index: 3;
    background-color: var(--primary-color);
}

.navigationSection .title h1 {
    color: white;
}

.navigationSection .navigation ul {
    display: flex;
    align-items: center;
}

.navigationSection .navigation ul li {
    margin-left: 20px;
}

.navigationSection .navigation ul li a {
    color: white;
}

.navigationSection .subMenuIcon {
    display: none;
}

.navigationSection .subMenuMobileContainer {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 20px;
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.32, 0.49, 0.65, 0.78);
}

.navigationSection .subMenuMobileContainer ul li {
    margin-bottom: 10px;
    transition: 0.3s cubic-bezier(0.32, 0.49, 0.65, 0.78);
}

.navigationSection .subMenuMobileContainer.active {
    visibility: visible;
    opacity: 1;
}

.colorPick {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.colorPick .selectColorText {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 70%;
    justify-content: center;
}

.colorPick .selectColorText .line {
    background-color: var(--primary-color);
    height: 1px;
    width: 100%;
}

.colorPick .selectColorText p {
    display: inline-block;
    min-width: 120px;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.colorPick ul {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.colorPick ul li input {
    display: none;
}

.colorPick ul li label {
    cursor: pointer;
}

.colorPick ul li label .circle {
    opacity: 1;
    width: 25px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #898989;
}

.colorPick ul li label:hover .circle {
    transform: scale(1.2);
    border-width: 2px;
    border-color: black;
}

.colorPick ul li input:checked+label .circle {
    transform: scale(1.2);
    border-width: 2px;
    border-color: black;
}

.singleModelTitle {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.7rem;
    text-align: center;
    padding-bottom: 20px;
}

.singleModelDescription {
    text-align: center;
    padding-bottom: 50px;
    line-height: 1.5;
}

.selectChoice .image {
    /* background-color: orange; */
    width: 100%;
    aspect-ratio: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selectChoice .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#textModelSelectResult {
    text-align: center;
    padding-top: 30px;
}

#textModelSelectResult span {
    text-align: center;
    font-weight: 600;
}

.shortSpecSection .firstRow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shortSpecSection .firstRow h2 {
    font-size: 1.6rem;
    font-weight: 800;
}

.shortSpecSection .firstRow p {
    color: grey;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 300;
}

.shortSpecSection .firstRow a {
    background-color: var(--primary-color);
    padding: 10px 25px;
    margin-top: 20px;
    color: white;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.shortSpecSection .firstRow a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.shortSpecSection .secondRow .item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    margin-left: 30px;
}

.shortSpecSection .secondRow .item .title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6d6b6b;
}

.shortSpecSection .secondRow .item .content {
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
}

.tab-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
}

.tab-box .tab-btn {
    background-color: lightgray;
    padding: 8px 35px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-box .tab-btn:hover,
.tab-box .tab-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.content-box .content {
    display: none;
}

.content-box .content.active {
    display: block;
}

.customButton {
    border: none;
}

.customButton a {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 35px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.customButton a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

#quick-view-modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    padding: 30px 0;
}

#quick-view-modal .quick-view-content {
    background-color: var(--primary-color);
    /* width: 80%; */
    height: auto;
}

#quick-view-modal .quick-view-content .close-quick-view {
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
}

#quick-view-modal .quick-view-content .close-quick-view svg {
    width: 30px;
    aspect-ratio: 1;
    fill: white;
}

#quick-view-modal .quick-view-content #quick-view-product {
    color: white;
}

.sliderContainer {
    padding-top: 50px;
}

.sliderContainer .swiper {
    width: 100%;
    height: 100%;
}

.sliderContainer .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 2;
}

.sliderContainer .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sliderContainer .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.sliderContainer .swiper .swiper-pagination {
    position: relative;
    padding-top: 50px;
}

.sliderContainer .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 5px;
    border-radius: 0;
    background-color: var(--primary-color);
}

.sliderInteriorContainer {
    padding-top: 50px;
}

.sliderInteriorContainer .swiper {
    width: 100%;
    height: 100%;
}

.sliderInteriorContainer .swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.sliderInteriorContainer .swiper .swiper-slide .image {
    display: flex;
    gap: 20px;
}

.sliderInteriorContainer .swiper .swiper-slide .image .item img {
    height: 100%;
    width: 100%;
}

.sliderInteriorContainer .swiper .swiper-slide .swiper-v {
    position: relative;
}

.sliderInteriorContainer .swiper .swiper-slide .swiper-v .swiper-slide {
    position: relative;
    aspect-ratio: 2;
}

.sliderInteriorContainer .swiper .swiper-slide .swiper-v .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sliderInteriorContainer .swiper .swiper-slide .swiper-v .swiper-pagination {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    bottom: 0;
    top: 0;
    padding-top: 0;
}

.sliderInteriorContainer .swiper .swiper-slide .swiper-v .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.sliderInteriorContainer .swiper .swiper-slide .content {
    padding-top: 0px;
}

.sliderInteriorContainer .swiper .swiper-slide .content .title {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.sliderInteriorContainer .swiper .swiper-slide .content .description p {
    font-weight: 400;
    line-height: 1.5;
    font-size: 0.9rem;
}

.sliderInteriorContainer .swiper .swiper-pagination {
    position: relative;
    padding-top: 50px;
}

.sliderInteriorContainer .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 0;
    background-color: var(--primary-color);
}

.sliderMoreFeaturesContainer {
    padding-top: 50px;
}

.sliderMoreFeaturesContainer .swiper {
    width: 100%;
    height: 100%;
}

.sliderMoreFeaturesContainer .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sliderMoreFeaturesContainer .swiper-slide .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sliderMoreFeaturesContainer .swiper-slide .item .image {
    display: flex;
    gap: 30px;
    width: 100%;
    aspect-ratio: 2;
    overflow: hidden;
}

.sliderMoreFeaturesContainer .swiper-slide .item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sliderMoreFeaturesContainer .swiper-slide .item .content {
    padding-left: 25%;
    padding-right: 25%;
}

.sliderMoreFeaturesContainer .swiper-slide .item .content .title {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 10px;
    text-align: center;
}

.sliderMoreFeaturesContainer .swiper-slide .item .content .description {
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    font-size: 0.9rem;
}

.sliderMoreFeaturesContainer .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.sliderMoreFeaturesContainer .swiper .swiper-pagination {
    position: relative;
    padding-top: 50px;
}

.sliderMoreFeaturesContainer .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 5px;
    border-radius: 0;
    background-color: var(--primary-color);
}

.playButton {
    background-color: var(--primary-color);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 25px;
    border-radius: 20px;
    cursor: pointer;
}

.playButton a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.playButton a svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.miniSubTitle {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    color: grey;
    text-align: center;
}

/* .testSlider {
 .swiper {
 width: 100%;
 height: 100px;
 aspect-ratio: 2/1;
 }
 .swiper-slide {
 text-align: center;
 font-size: 18px;
 background: #444;
 display: flex;
 justify-content: center;
 align-items: center;
 }
 .swiper-slide img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 }
 .swiper-v {
 background: #000;
 }
 } */
.sliderExteriorContainer {
    padding-top: 50px;
}

.sliderExteriorContainer .swiper {
    width: 100%;
    height: 100%;
}

.sliderExteriorContainer .swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.sliderExteriorContainer .swiper .swiper-slide .image {
    display: flex;
    gap: 20px;
}

.sliderExteriorContainer .swiper .swiper-slide .image .item img {
    height: 100%;
    width: 100%;
}

.sliderExteriorContainer .swiper .swiper-slide .swiper-v {
    display: none;
    position: relative;
}

.sliderExteriorContainer .swiper .swiper-slide .swiper-v .swiper-slide {
    position: relative;
    height: auto;
}

.sliderExteriorContainer .swiper .swiper-slide .swiper-v .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sliderExteriorContainer .swiper .swiper-slide .swiper-v .swiper-pagination {
    position: relative;
    margin-top: 0;
    top: 0;
    margin-bottom: 0;
    padding-top: 0;
    bottom: 0;
}

.sliderExteriorContainer .swiper .swiper-slide .swiper-v .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.sliderExteriorContainer .swiper .swiper-slide .content {
    padding-top: 20px;
}

.sliderExteriorContainer .swiper .swiper-slide .content .title {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.sliderExteriorContainer .swiper .swiper-slide .content .description p {
    font-weight: 400;
    line-height: 1.5;
    font-size: 0.9rem;
}

.sliderExteriorContainer .swiper .swiper-pagination {
    position: relative;
    padding-top: 50px;
}

.sliderExteriorContainer .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 0;
    background-color: var(--primary-color);
    /* position: relative;
   width: 100%;
   aspect-ratio: 1;
   .swiper {
   width: 100%;
   height: 100%;
   }
   .swiper-slide.item {
   text-align: center;
   font-size: 18px;
   background: #444;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   }
   .swiper-slide img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   }
   .swiper-v {
   background: #000;
   .swiper-pagination {
   background-color: blue;
   padding-bottom: 100px;
   }
   } */
}

@media (max-width: 576px) {
    .sliderExteriorContainer .swiper .swiper-slide .image {
        display: none;
    }

    .sliderExteriorContainer .swiper .swiper-slide .swiper-v {
        display: block;
    }

    .sliderExteriorContainer .swiper .swiper-slide .content {
        padding-top: 0px;
    }
}

.buttonSpec {
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttonSpec a {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 35px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.buttonSpec a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 0;
}

.batterySection {
    position: relative;
}

.batterySection .content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.batterySection .content .batteryDetailContainer {
    width: 100%;
}

.batterySection .content .batteryDetailContainer .batteryContentContainer {
    background-color: #ffffff63;
    padding: 30px;
    border-radius: 20px;
}

.batterySection .content .batteryDetailContainer .batteryContentContainer .image {
    display: none;
    align-items: center;
    justify-content: center;
}

.batterySection .content .batteryDetailContainer .batteryContentContainer .image img {
    width: 100%;
    height: 100%;
}

.batterySection .content .batteryDetailContainer .batteryContentContainer .title {
    font-size: 2rem;
    font-weight: 600;
    padding-top: 30px;
    padding-bottom: 30px;
    text-transform: uppercase;
}

.batterySection .content .batteryDetailContainer .batteryContentContainer .description {
    color: #494747;
    font-size: 0.85rem;
    line-height: 1.5;
    padding-bottom: 30px;
}

.batterySection .content .batteryDetailContainer .batteryContentContainer ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-bottom: 30px;
}

.batterySection .content .batteryDetailContainer .batteryContentContainer ul li {
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 8px;
}

.batterySection .image {
    position: relative;
}

.batterySection .image img {
    height: 100%;
    width: 100%;
}

.batterySection .image::before {
    content: '';
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
}

@media (max-width: 576px) {
    .batterySection .content .batteryDetailContainer .batteryContentContainer .image {
        display: flex;
    }

    .batterySection .content .batteryDetailContainer .batteryContentContainer .image img {
        height: 100%;
        width: 100%;
        aspect-ratio: auto;
        border-radius: 10px;
    }

    .batterySection .content .batteryDetailContainer .batteryContentContainer .image::before {
        display: none;
    }

    .batterySection .image img {
        width: 100%;
        aspect-ratio: 0.5;
        object-fit: cover;
    }

    .batterySection .image::before {
        background: #fffbfbd4;
    }
}

.technologyItem {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.technologyItem .content {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 2;
    padding: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    font-size: 0.8rem;
}

.technologyItem .image {
    position: relative;
}

.technologyItem .image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1.25;
}

.technologyItem .image::before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.19) 23%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 1;
}

.brochureSection {
    position: relative;
}

.brochureSection .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.brochureSection .content h4 {
    font-size: 2.3rem;
    padding-bottom: 20px;
    color: white;
}

.brochureSection .image img {
    width: 100%;
    aspect-ratio: 2;
    object-fit: cover;
}

.mainQuickViewSlide {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.mainQuickViewSlide .quickviewTechnologySlide {
    margin-bottom: 0;
    float: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}

.mainQuickViewSlide .quickviewTechnologySlide .item {
    display: flex;
    flex-direction: column;
    display: block;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-align: center;
    align-items: center;
    /* background-color: #fff; */
    /* border: 1px solid #ccc; */
    /* border-radius: .5rem; */
    /* padding: .35rem .8rem; */
    /* margin: .5rem; */
    /* -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2)); */
    /* filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2)); */
    /* -webkit-transition: none; */
    flex: none;
    max-width: unset;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    opacity: unset;
    width: 300px;
}

.mainQuickViewSlide .quickviewTechnologySlide .item .content {
    margin-right: 20px;
}

.mainQuickViewSlide .quickviewTechnologySlide .item .content img {
    width: 100%;
    aspect-ratio: 1.3333333333;
    object-fit: cover;
    border-radius: 10px;
}

.mainQuickViewSlide .quickviewTechnologySlide .item .content .title {
    color: white;
    font-weight: 600;
    padding-top: 10px;
    font-size: 0.9rem;
}

.mainQuickViewSlide .quickviewTechnologySlide .item .content p {
    padding-top: 10px;
    font-size: 0.8rem;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .topCover .backgroundImage img {
        aspect-ratio: 1;
    }

    .navigationSection .navigation {
        display: none;
    }

    .navigationSection .subMenuIcon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigationSection {
        top: 50px;
    }

    .selectChoice .image {
        aspect-ratio: 2;
    }

    .shortSpecSection .firstRow {
        padding-bottom: 50px;
    }

    .shortSpecSection .secondRow .item {
        margin-left: 0;
    }

    .sliderContainer .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
    }

    .tab-box .tab-btn {
        padding: 5px 25px;
        font-size: 0.75rem;
    }

    .singleModelTitle {
        font-size: 1.4rem;
    }

    .singleModelDescription {
        font-size: 0.9rem;
    }

    .playButton {
        padding: 3px 15px;
    }

    .sliderExteriorContainer .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
    }

    .sliderInteriorContainer .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
    }

    .sliderMoreFeaturesContainer .swiper-slide .item .image {
        aspect-ratio: 1.5;
    }

    .sliderMoreFeaturesContainer .swiper-slide .item .content {
        padding-left: 0;
        padding-right: 0;
    }

    .sliderMoreFeaturesContainer .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
    }

    .testDriveSection .background img {
        aspect-ratio: 0.6666666667;
    }

    .brochureSection .image img {
        aspect-ratio: 1;
    }

    .batterySection .content .batteryDetailContainer .batteryContentContainer {
        background-color: transparent;
        border-radius: 0;
    }

    #quick-view-modal .quick-view-content {
        width: 100%;
    }
}

/* Model Page Style */
.pageTopCover {
    width: 100%;
    aspect-ratio: 3;
    overflow: hidden;
}

.pageTopCover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modelListContainer .tab-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    overflow: hidden;
}

.modelListContainer .tab-box .tab-btn {
    background-color: transparent;
    padding: 8px 35px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    border-right: none;
}

.modelListContainer .tab-box .tab-btn:last-child {
    background-color: transparent;
    padding: 8px 35px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
}

.modelListContainer .tab-box .tab-btn:hover,
.modelListContainer .tab-box .tab-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.modelListContainer .content-box .content {
    display: none;
}

.modelListContainer .content-box .content.active {
    display: block;
}

.modelListTable {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.modelListTable .item {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--primary-color);
    padding-top: 40px;
    padding-bottom: 40px;
}

.modelListTable .item .categoryName {
    width: 200px;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.modelListTable .item .modelListPng {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.modelListTable .item .modelListPng .modelItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modelListTable .item .modelListPng .modelItem h4 {
    text-align: center;
}

.modelListTable .item:last-child {
    border-bottom: none;
}

@media (max-width: 576px) {
    .pageTopCover {
        aspect-ratio: 1;
    }

    .modelListTable .item {
        flex-direction: column;
    }

    .modelListTable .item .modelListPng {
        grid-template-columns: 1fr 1fr;
    }

    .modelListContainer .tab-box {
        display: block;
        width: 100%;
    }

    .modelListContainer .tab-box .tab-btn {
        border-right: 1px solid var(--primary-color);
        border-bottom: none;
    }
}

/* Page Services Style */
.servicesGrid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.servicesGrid .pageServiceItem {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
}

.servicesGrid .pageServiceItem .image {
    display: flex;
    width: 100%;
    aspect-ratio: 1.6666666667;
    overflow: hidden;
}

.servicesGrid .pageServiceItem .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicesGrid .pageServiceItem .content h2 {
    font-size: 1.2rem;
    padding-bottom: 10px;
}

.servicesGrid .pageServiceItem .content p {
    color: #2e2e2e;
    line-height: 1.5;
}

.pageNewsGridContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.pagnitationContainer {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.pagnitationContainer .page-numbers {
    background-color: #e8e7e7;
    width: 30px;
    aspect-ratio: 1;
    display: flex;
    color: var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagnitationContainer .page-numbers:hover,
.pagnitationContainer .page-numbers.current {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 576px) {
    .servicesGrid {
        grid-template-columns: 1fr;
    }

    .newsGrid {
        grid-template-columns: 1fr;
    }

    .pageNewsGridContainer {
        grid-template-columns: 1fr;
    }

    .pagnitationContainer {
        gap: 10px;
    }
}

.locationContainer {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
}

.locationContainer .item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.locationContainer .item .icon svg {
    width: 20px;
    aspect-ratio: 1;
    fill: black;
}

.locationContainer .item .content {
    font-size: 1rem;
}

.contact-page-contact-form {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 30px;
}

.contact-page-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page-contact-form form input {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form input::placeholder {
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form textarea {
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
    height: 200px;
}

.contact-page-contact-form form textarea::placeholder {
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form button {
    border-radius: 30px;
    padding: 5px 20px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-family: "Montserrat", serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-page-contact-form form button:hover {
    background-color: white;
    color: var(--primary-color);
}

.contact-page-contact-form form select {
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
    color: grey;
}

@media (max-width: 576px) {
    .contact-page-contact-form {
        width: 100%;
        padding-top: 50px;
    }
}

ul.socialIcon {
    display: flex;
    gap: 10px;
}

ul.socialIcon li a svg {
    width: 13px;
    aspect-ratio: 1;
    fill: var(--primary-color);
}

.missionFlexContainer {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.missionFlexContainer .item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.missionFlexContainer .item .number {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: 600;
}

.missionFlexContainer .item .content {
    font-size: 1rem;
}

.gridShareHolder {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gridShareHolder .item .image {
    width: 100%;
    aspect-ratio: 0.8;
    overflow: hidden;
}

.gridShareHolder .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gridShareHolder .item h3 {
    font-size: 0.9rem;
    padding-top: 20px;
    padding-bottom: 10px;
}

.gridShareHolder .item p {
    font-size: 0.85rem;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .gridShareHolder {
        grid-template-columns: 1fr;
    }

    .pageHomepageModelSlider {
        padding: 0 !important;
    }

    .exploreModelHomepageSlider .swiper-slide-active .homepageModelItem h3.title {
        font-size: 1.2rem;
    }
	
	.exploreModelHomepageSlider {
        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
    }

    .keyFeatureItem {
        aspect-ratio: 2 / 3;
        border-radius: 10px;
    }

    .keyFeatureItem .content {
        padding: 0px 20px;
    }

    .keyFeatureSlider .key-feature-swiper-pagination {
        padding: 25px 20px;
    }

    .serviceItem .image {
        aspect-ratio: 2 / 3;
    }

    .footerArea .topFooter .aferLogo .item {
        width: 100%;
            max-width: 100%;
    }
}

.googleMap {
    padding-bottom: 50px;
}

.googleMap iframe {
    width: 100%;
    aspect-ratio: 1;
}

.aboutTitle {
    text-transform: uppercase;
}

.wordPressContentStyle {
    padding-bottom: 50px;

    h1,
    h2,
    h3,
    h4,
    h5 {
        padding-bottom: 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 1.00rem;
        line-height: 1.5;
        color: var(--text-color);
        padding-bottom: 15px;
    }

    ul.wp-block-list {
        list-style: square;
        list-style-position: outside;
        margin-left: 10px;
        padding-bottom: 30px;

        li {
            font-size: 0.85rem;
            padding-bottom: 5px;

            ul {
                list-style: circle;
                padding-top: 10px;
                margin-left: 30px;
                padding-bottom: 5px;
            }
        }
    }

    img {
        width: 100%;
        height: auto;
        padding-bottom: 15px;
    }
}

.promotionContainer {
    .newsItem {
        padding-bottom: 10px;
    }
}

.latestNewsContainer {
    .newsItem {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding-bottom: 10px;
    }

    .newsItem .date {
        font-size: 0.65rem;
        color: grey;
    }

    .newsItem .title {
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 1.5;
    }
}